home *** CD-ROM | disk | FTP | other *** search
/ IRIX Patches 1995 March / SGI IRIX Patches 1995 Mar.iso / relnotes / Patchnotes / ch1.z / ch1
Text File  |  1995-03-10  |  59KB  |  2,884 lines

  1.  
  2.  
  3.  
  4.                                   - 1 -
  5.  
  6.  
  7.  
  8.        1.  _I_n_t_r_o_d_u_c_t_i_o_n
  9.  
  10.        This Release Note accompanies the CD-ROM titled _I_R_I_X _P_a_t_c_h_e_s
  11.        _3/_9_5 (part number 812-0290-003), and provides information
  12.        applicable to all patches on this CD-ROM. The individual
  13.        patch Release Notes contain specific information about the
  14.        individual patches. Where this document and the individual
  15.        patch release notes differ, this document takes precedence.
  16.  
  17.        This document contains the following chapters:
  18.  
  19.          1.  Introduction
  20.  
  21.          2.  Installation Information
  22.  
  23.        This software is provided without support and without any
  24.        obligation on the part of Silicon Graphics, Inc. to assist
  25.        in its use, correction, modification or enhancement.  There
  26.        is no guarantee that this software will be included in
  27.        future software releases.
  28.  
  29.        THIS SOFTWARE IS PROVIDED "AS IS" WITH NO WARRANTIES OF ANY
  30.        KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND
  31.        FITNESS FOR A PARTICULAR PURPOSE, OR ARISING FROM A COURSE
  32.        OF DEALING, USAGE OR TRADE PRACTICE.
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.                                   - 2 -
  71.  
  72.  
  73.  
  74.        1.1  _S_u_p_p_o_r_t_e_d__H_a_r_d_w_a_r_e__a_n_d__S_o_f_t_w_a_r_e
  75.  
  76.        The IRIX Patches 3/95 contains patches for three different
  77.        levels of the IRIX operating system.  For that reason, no
  78.        installation tools are present on this CD-ROM.  The IRIX
  79.        Patches #2 (p/n 812-0290-002) provided with the December,
  80.        1994 Support Advantage release contains the proper
  81.        installation tools for IRIX 5.2 systems.  For IRIX 5.3 and
  82.        IRIX 6.0.1 systems, the default installation tools on your
  83.        original distribution media can be used.
  84.  
  85.        Because the command uname -r does not provide sufficient
  86.        information to determine which IRIX 5.2 variant your system
  87.        is running, the following script is provided in the file
  88.        /_C_D_R_O_M/_o_s._v_e_r_s_i_o_n.
  89.  
  90.  
  91.        #!/bin/sh
  92.        #
  93.        # Get the OS version number from the eoe1 software image
  94.        # All IRIX systems must have eoe1.sw.unix installed.
  95.        #
  96.        vnum=`/usr/sbin/versions -n eoe1.sw.unix | /usr/bin/tail -1 | /usr/bin/awk '{print $3}'`
  97.        hostname=`/usr/bsd/hostname`
  98.  
  99.        OS52="IRIX 5.2"
  100.        OS53="IRIX 5.3"
  101.        OS601="IRIX 6.0.1"
  102.  
  103.        # Parse the version number
  104.        case $vnum in
  105.                # IRIX 5.2
  106.                1011009700) os="$OS52";;
  107.                # IRIX 5.2 for Onyx Extreme
  108.                1011168200) os="$OS52 for Onyx Extreme";;
  109.                # IRIX 5.2 for Indy R4600PC & Challenge S
  110.                1011112900) os="$OS52 for Indy R4600PC & Challenge S";;
  111.                # IRIX 5.2 for Indy R4600SC/XZ & Presenter
  112.                1011372420) os="$OS52 for Indy R4600SC/XZ & Presenter";;
  113.                # IRIX 5.2 for TKO Onyx
  114.                1011410520) os="$OS52 for TKO Onyx";;
  115.                # IRIX 5.2-200MHz Challenge and Onyx
  116.                1011538120) os="$OS52 for Challenge/Onyx";;
  117.                # IRIX 5.3
  118.                1021572036) os="$OS53";;
  119.                # IRIX 5.3 with XFS
  120.                1021725920) os="$OS53 with XFS";;
  121.                # IRIX 6.0.1
  122.                1121688834) os="$OS601";;
  123.                # Some other version number
  124.                *) /bin/echo "\n${hostname} is not a version of IRIX that this script recognizes.\n";exit 1;;
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.                                   - 3 -
  137.  
  138.  
  139.  
  140.        esac
  141.  
  142.        /bin/echo "\n${hostname} is currently running ${os}.\n"
  143.  
  144.  
  145.        To run the script, make sure that the _I_R_I_X _P_a_t_c_h_e_s _3/_9_5 CD-
  146.        ROM is mounted, and execute the command:
  147.  
  148.        # /CDROM/os.version
  149.  
  150.        Using the output from this script, examine Tables 1-1, 1-2
  151.        or 1-3 to determine which patches are supported for the
  152.        version of IRIX that your system is running. In addition,
  153.        check and make sure that you have a supported CPU and
  154.        graphics subsystem. Finally, check to see whether the
  155.        patch(es) you are interested in require miniroot
  156.        installation.  Instructions for installing from a local CD-
  157.        ROM are provided in chapter 2 of this Release Note.
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.                                   - 4 -
  203.  
  204.  
  205.  
  206.        Table 1-1 IRIX 5.2 Hardware and Software Patch Requirements.
  207.  
  208.  
  209.        ________________________________________________________________________________________________
  210.         Patch         Hardware         miniroot                         Software
  211.         Number      Requirements       required?                      Requirements
  212.        ________________________________________________________________________________________________________________________________________________________________________________________________
  213.        |||
  214.                |||
  215.                                      |||
  216.                                                  |||
  217.                                                                                                        |||
  218.  
  219.           2      none                      N       IRIX 5.2
  220.        ________________________________________________________________________________________________
  221.           4      IP20, IP22                Y       IRIX 5.2
  222.        ________________________________________________________________________________________________
  223.           5      none                      N       IRIX 5.2
  224.        ________________________________________________________________________________________________
  225.           6      none                      N       Impressario 5.2
  226.        ________________________________________________________________________________________________
  227.           9*     RE/RE2 graphics           Y       IRIX 5.2
  228.        ________________________________________________________________________________________________
  229.           14     XL graphics               Y       IRIX 5.2
  230.        ________________________________________________________________________________________________
  231.           18     none                      N       IDO 5.2
  232.        ________________________________________________________________________________________________
  233.           20     none                      Y       IRIX 5.2
  234.        ________________________________________________________________________________________________
  235.           24     none                      Y       IRIS InSight 2.2.1
  236.        ________________________________________________________________________________________________
  237.           25     IP22, non-R4600 CPU       Y       IRIX 5.2
  238.        ________________________________________________________________________________________________
  239.           29     none                      Y       IRIX 5.2, IDO 5.2
  240.        ________________________________________________________________________________________________
  241.           31     IP22 R4600C,
  242.                  R4600PC                   Y       IRIX 5.2 for Indy R4600PC & Challenge S
  243.        ________________________________________________________________________________________________
  244.           32     none                      N       IRIX 5.2, IDO 5.2, FTN 5.2
  245.        ________________________________________________________________________________________________
  246.           36     none                      N       IRIX 5.2
  247.        ________________________________________________________________________________________________
  248.           38     none                      N       IRIX 5.2
  249.        ________________________________________________________________________________________________
  250.           40     none                      N       IRIX 5.2, IDO 5.2
  251.        ________________________________________________________________________________________________
  252.           44     IP5, IP7, IP9,
  253.                  IP15, IP17,
  254.                  IP19                      N       IRIX 5.2
  255.        ________________________________________________________________________________________________
  256.           51     IP19, RE or
  257.                  VTX graphics              N       IRIX 5.2
  258.        ________________________________________________________________________________________________
  259.           58     XS, XS24, XS24Z,
  260.                  XZ, Elan or
  261.                  Extreme graphics,
  262.                  IP12, IP20, IP22,
  263.                  IP17                      Y       IRIX 5.2
  264.        ________________________________________________________________________________________________
  265.           59     none                      N       IRIX 5.2
  266.        ________________________________________________________________________________________________
  267.           63     none                      N       IRIX 5.2, ImageVision Library 2.3
  268.        ________________________________________________________________________________________________
  269.           64     none                      N       IRIX 5.2
  270.        ________________________________________________________________________________________________
  271.           65     none                      N       SGIHelp 1.0.1
  272.        ________________________________________________________________________________________________
  273.          66*     RE graphics,
  274.        ________________________________________________________________________________________________
  275.        ||||||||||||||||||||||||||||||||||||||||||||
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.                ||||||||||||||||||||||||||||||||||||||||||||
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361.                                      ||||||||||||||||||||||||||||||||||||||||||||
  362.  
  363.  
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401.  
  402.  
  403.  
  404.                                                  ||||||||||||||||||||||||||||||||||||||||||||
  405.  
  406.  
  407.  
  408.  
  409.  
  410.  
  411.  
  412.  
  413.  
  414.  
  415.  
  416.  
  417.  
  418.  
  419.  
  420.  
  421.  
  422.  
  423.  
  424.  
  425.  
  426.  
  427.  
  428.  
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.                                                                                                        ||||||||||||||||||||||||||||||||||||||||||||
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467.  
  468.  
  469.  
  470.  
  471.  
  472.  
  473.  
  474.  
  475.  
  476.  
  477.  
  478.  
  479.  
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487.  
  488.  
  489.  
  490.  
  491.  
  492.  
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500.  
  501.  
  502.  
  503.                                   - 5 -
  504.  
  505.  
  506.  
  507.        ________________________________________________________________________________________________
  508.         Patch         Hardware         miniroot                         Software
  509.         Number      Requirements       required?                      Requirements
  510.        ________________________________________________________________________________________________________________________________________________________________________________________________
  511.        |||
  512.                |||
  513.                                      |||
  514.                                                  |||
  515.                                                                                                        |||
  516.  
  517.                  IP17, IP19                Y       IRIX 5.2
  518.        ________________________________________________________________________________________________
  519.           67     none                      Y       IRIX 5.2
  520.        ________________________________________________________________________________________________
  521.           70     none                      N       IDO 5.2
  522.        ________________________________________________________________________________________________
  523.           78     XL graphics               Y       IRIX 5.2,
  524.                                                    IRIX 5.2 for Indy R4600PC & Challenge S
  525.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter
  526.        ________________________________________________________________________________________________
  527.           79     none                      N       IRIX 5.2,
  528.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  529.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  530.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  531.                                                    IRIX 5.2 for Challenge/Onyx,
  532.                                                    IRIX 5.2 for TKO Onyx
  533.        ________________________________________________________________________________________________
  534.           84     all except
  535.                  Onyx Extreme
  536.                  or TKO Onyx               Y       IRIX 5.2, IRIX 5.2 for Indy R4600PC & Challenge S,
  537.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  538.                                                    IRIX 5.2 for Challenge/Onyx
  539.        ________________________________________________________________________________________________
  540.           88     none                      N       CASEVision/Workshop 2.2
  541.        ________________________________________________________________________________________________
  542.           95     IP4, IP6,
  543.                  IP12, IP20,
  544.                  IP22                      Y       IRIX 5.2
  545.        ________________________________________________________________________________________________
  546.           96     none                      N       IRIX 5.2,
  547.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  548.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  549.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  550.                                                    IRIX 5.2 for Challenge/Onyx,
  551.                                                    IRIX 5.2 for TKO Onyx
  552.        ________________________________________________________________________________________________
  553.          108     none                      N       IRIX 5.2, IRIX 5.2 for Indy R4600PC & Challenge S,
  554.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  555.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  556.                                                    IRIX 5.2 for Challenge/Onyx,
  557.                                                    IRIX 5.2 for TKO Onyx
  558.        ________________________________________________________________________________________________
  559.          110     IP20, starter
  560.                  graphics                  Y       IRIX 5.2
  561.        ________________________________________________________________________________________________
  562.          114     IP19, Extreme             Y       IRIX 5.2 for Onyx LE (Onyx Extreme)
  563.                  graphics
  564.        ________________________________________________________________________________________________
  565.          115     XS, XS24, XS24Z,
  566.                  XZ, Elan or
  567.                  Extreme graphics,
  568.                  IP12, IP20, IP22          Y       IRIX 5.2
  569.        ________________________________________________________________________________________________
  570.        |||||||||||||||||||||||||||||||||||||||||||||||
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589.  
  590.  
  591.  
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598.  
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615.                |||||||||||||||||||||||||||||||||||||||||||||||
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639.  
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655.  
  656.  
  657.  
  658.  
  659.  
  660.                                      |||||||||||||||||||||||||||||||||||||||||||||||
  661.  
  662.  
  663.  
  664.  
  665.  
  666.  
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674.  
  675.  
  676.  
  677.  
  678.  
  679.  
  680.  
  681.  
  682.  
  683.  
  684.  
  685.  
  686.  
  687.  
  688.  
  689.  
  690.  
  691.  
  692.  
  693.  
  694.  
  695.  
  696.  
  697.  
  698.  
  699.  
  700.  
  701.  
  702.  
  703.  
  704.  
  705.                                                  |||||||||||||||||||||||||||||||||||||||||||||||
  706.  
  707.  
  708.  
  709.  
  710.  
  711.  
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727.  
  728.  
  729.  
  730.  
  731.  
  732.  
  733.  
  734.  
  735.  
  736.  
  737.  
  738.  
  739.  
  740.  
  741.  
  742.  
  743.  
  744.  
  745.  
  746.  
  747.  
  748.  
  749.  
  750.                                                                                                        |||||||||||||||||||||||||||||||||||||||||||||||
  751.  
  752.  
  753.  
  754.  
  755.  
  756.  
  757.  
  758.  
  759.  
  760.  
  761.  
  762.  
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769.  
  770.  
  771.  
  772.  
  773.  
  774.  
  775.  
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782.  
  783.  
  784.  
  785.  
  786.  
  787.  
  788.  
  789.  
  790.  
  791.  
  792.  
  793.  
  794.  
  795.  
  796.  
  797.  
  798.  
  799.  
  800.  
  801.  
  802.  
  803.  
  804.  
  805.  
  806.  
  807.  
  808.  
  809.                                   - 6 -
  810.  
  811.  
  812.  
  813.        ________________________________________________________________________________________________
  814.         Patch         Hardware         miniroot                         Software
  815.         Number      Requirements       required?                      Requirements
  816.        ________________________________________________________________________________________________________________________________________________________________________________________________
  817.        |||
  818.                |||
  819.                                      |||
  820.                                                  |||
  821.                                                                                                        |||
  822.  
  823.        ________________________________________________________________________________________________
  824.          118     Indy R4600SC              Y       IRIX 5.2 for Indy R4600SC/XZ & Presenter
  825.        ________________________________________________________________________________________________
  826.          123     none                      Y       SX25 1.0.1
  827.        ________________________________________________________________________________________________
  828.          130     none                      N       IRIX 5.2, IRIX 5.2 for Indy R4600PC & Challenge S,
  829.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  830.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  831.                                                    IRIX 5.2 for Challenge/Onyx, IRIX 5.2 for TKO Onyx
  832.        ________________________________________________________________________________________________
  833.          131     none                      N       IRIX 5.2, IRIX 5.2 for Indy R4600PC & Challenge S,
  834.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  835.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  836.                                                    IRIX 5.2 for Challenge/Onyx, IRIX 5.2 for TKO Onyx
  837.        ________________________________________________________________________________________________
  838.          143     IP22, Extreme
  839.                  graphics                  Y       IRIX 5.2
  840.        ________________________________________________________________________________________________
  841.          145     none                      N       IRIX 5.2
  842.        ________________________________________________________________________________________________
  843.          148     IP19, Extreme
  844.                  graphics                  Y       IRIX 5.2 ofr Onyx LE (Onyx Extreme)
  845.        ________________________________________________________________________________________________
  846.          151     none                      Y       IRIX 5.2,
  847.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  848.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  849.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  850.                                                    IRIX 5.2 for Challenge/Onyx,
  851.                                                    IRIX 5.2 for TKO Onyx
  852.        ________________________________________________________________________________________________
  853.          152     none                      N       CASEVision/Tracker 2.0
  854.        ________________________________________________________________________________________________
  855.          153     none                      N       IRIX 5.2, IRIX 5.2 for Indy R4600PC & Challenge S,
  856.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  857.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  858.                                                    IRIX 5.2 for Challenge/Onyx, IRIX 5.2 for TKO Onyx
  859.        ________________________________________________________________________________________________
  860.          155     none                      N       SX25 1.0.1
  861.        ________________________________________________________________________________________________
  862.          162     none                      N       IRIX 5.2, IRIX 5.2 for Indy R4600PC & Challenge S,
  863.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  864.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  865.                                                    IRIX 5.2 for Challenge/Onyx, IRIX 5.2 for TKO Onyx
  866.          164     none                      N       Delta/C++ 1.0
  867.        ________________________________________________________________________________________________
  868.          165     none                      N       IRIX 5.2,
  869.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  870.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  871.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  872.                                                    IRIX 5.2 for Challenge/Onyx,
  873.                                                    IRIX 5.2 for TKO Onyx
  874.        ________________________________________________________________________________________________
  875.          167     none                      N       IRIX 5.2,
  876.        ________________________________________________________________________________________________
  877.        |||||||||||||||||||||||||||||||||||||||||||||||
  878.  
  879.  
  880.  
  881.  
  882.  
  883.  
  884.  
  885.  
  886.  
  887.  
  888.  
  889.  
  890.  
  891.  
  892.  
  893.  
  894.  
  895.  
  896.  
  897.  
  898.  
  899.  
  900.  
  901.  
  902.  
  903.  
  904.  
  905.  
  906.  
  907.  
  908.  
  909.  
  910.  
  911.  
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918.  
  919.  
  920.  
  921.  
  922.                |||||||||||||||||||||||||||||||||||||||||||||||
  923.  
  924.  
  925.  
  926.  
  927.  
  928.  
  929.  
  930.  
  931.  
  932.  
  933.  
  934.  
  935.  
  936.  
  937.  
  938.  
  939.  
  940.  
  941.  
  942.  
  943.  
  944.  
  945.  
  946.  
  947.  
  948.  
  949.  
  950.  
  951.  
  952.  
  953.  
  954.  
  955.  
  956.  
  957.  
  958.  
  959.  
  960.  
  961.  
  962.  
  963.  
  964.  
  965.  
  966.  
  967.                                      |||||||||||||||||||||||||||||||||||||||||||||||
  968.  
  969.  
  970.  
  971.  
  972.  
  973.  
  974.  
  975.  
  976.  
  977.  
  978.  
  979.  
  980.  
  981.  
  982.  
  983.  
  984.  
  985.  
  986.  
  987.  
  988.  
  989.  
  990.  
  991.  
  992.  
  993.  
  994.  
  995.  
  996.  
  997.  
  998.  
  999.  
  1000.  
  1001.  
  1002.  
  1003.  
  1004.  
  1005.  
  1006.  
  1007.  
  1008.  
  1009.  
  1010.  
  1011.  
  1012.                                                  |||||||||||||||||||||||||||||||||||||||||||||||
  1013.  
  1014.  
  1015.  
  1016.  
  1017.  
  1018.  
  1019.  
  1020.  
  1021.  
  1022.  
  1023.  
  1024.  
  1025.  
  1026.  
  1027.  
  1028.  
  1029.  
  1030.  
  1031.  
  1032.  
  1033.  
  1034.  
  1035.  
  1036.  
  1037.  
  1038.  
  1039.  
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045.  
  1046.  
  1047.  
  1048.  
  1049.  
  1050.  
  1051.  
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057.                                                                                                        |||||||||||||||||||||||||||||||||||||||||||||||
  1058.  
  1059.  
  1060.  
  1061.  
  1062.  
  1063.  
  1064.  
  1065.  
  1066.  
  1067.  
  1068.  
  1069.  
  1070.  
  1071.  
  1072.  
  1073.  
  1074.  
  1075.  
  1076.  
  1077.  
  1078.  
  1079.  
  1080.  
  1081.  
  1082.  
  1083.  
  1084.  
  1085.  
  1086.  
  1087.  
  1088.  
  1089.  
  1090.  
  1091.  
  1092.  
  1093.  
  1094.  
  1095.  
  1096.  
  1097.  
  1098.  
  1099.  
  1100.  
  1101.  
  1102.  
  1103.  
  1104.  
  1105.  
  1106.  
  1107.  
  1108.  
  1109.  
  1110.  
  1111.  
  1112.  
  1113.  
  1114.  
  1115.  
  1116.                                   - 7 -
  1117.  
  1118.  
  1119.  
  1120.        ________________________________________________________________________________________________
  1121.         Patch         Hardware         miniroot                         Software
  1122.         Number      Requirements       required?                      Requirements
  1123.        ________________________________________________________________________________________________________________________________________________________________________________________________
  1124.        |||
  1125.                |||
  1126.                                      |||
  1127.                                                  |||
  1128.                                                                                                        |||
  1129.  
  1130.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  1131.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  1132.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  1133.                                                    IRIX 5.2 for Challenge/Onyx,
  1134.                                                    IRIX 5.2 for TKO Onyx
  1135.        ________________________________________________________________________________________________
  1136.          174     none                      N       IDO 5.2, Fortran 4.0
  1137.        ________________________________________________________________________________________________
  1138.          182     IP22                      N       IRIX 5.2,
  1139.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  1140.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter
  1141.        ________________________________________________________________________________________________
  1142.          196     IP12, IP20,
  1143.                  IP22                      Y       IRIX 5.2
  1144.        ________________________________________________________________________________________________
  1145.          201     VGX, VGXT
  1146.                  graphics                  N       IRIX 5.2,
  1147.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  1148.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  1149.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  1150.                                                    IRIX 5.2 for Challenge/Onyx,
  1151.                                                    IRIX 5.2 for TKO Onyx
  1152.        ________________________________________________________________________________________________
  1153.          211     none                      N       IRIX 5.2,
  1154.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  1155.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  1156.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  1157.                                                    IRIX 5.2 for Challenge/Onyx,
  1158.                                                    IRIX 5.2 for TKO Onyx
  1159.        ________________________________________________________________________________________________
  1160.          223     RE/REII
  1161.                  graphics                  Y       IRIX 5.2,
  1162.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  1163.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  1164.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  1165.                                                    IRIX 5.2 for Challenge/Onyx,
  1166.                                                    IRIX 5.2 for TKO Onyx
  1167.        ________________________________________________________________________________________________
  1168.          226     IP5, IP7, IP9,
  1169.                  IP15, IP17, IP19          Y       IRIX 5.2, IDO 5.2, NFS 5.2
  1170.        ________________________________________________________________________________________________
  1171.          230     none                      N       Tracker 2.0
  1172.        ________________________________________________________________________________________________
  1173.          238     none                      N       Sirius 1.0.2 or Sirius 1.1
  1174.        ________________________________________________________________________________________________
  1175.          241     none                      Y       IDO 5.2, IRIX 5.2,
  1176.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  1177.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  1178.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  1179.                                                    IRIX 5.2 for Challenge/Onyx,
  1180.                                                    IRIX 5.2 for TKO Onyx
  1181.        ________________________________________________________________________________________________
  1182.        |||||||||||||||||||||||||||||||||||||||||||||||
  1183.  
  1184.  
  1185.  
  1186.  
  1187.  
  1188.  
  1189.  
  1190.  
  1191.  
  1192.  
  1193.  
  1194.  
  1195.  
  1196.  
  1197.  
  1198.  
  1199.  
  1200.  
  1201.  
  1202.  
  1203.  
  1204.  
  1205.  
  1206.  
  1207.  
  1208.  
  1209.  
  1210.  
  1211.  
  1212.  
  1213.  
  1214.  
  1215.  
  1216.  
  1217.  
  1218.  
  1219.  
  1220.  
  1221.  
  1222.  
  1223.  
  1224.  
  1225.  
  1226.  
  1227.                |||||||||||||||||||||||||||||||||||||||||||||||
  1228.  
  1229.  
  1230.  
  1231.  
  1232.  
  1233.  
  1234.  
  1235.  
  1236.  
  1237.  
  1238.  
  1239.  
  1240.  
  1241.  
  1242.  
  1243.  
  1244.  
  1245.  
  1246.  
  1247.  
  1248.  
  1249.  
  1250.  
  1251.  
  1252.  
  1253.  
  1254.  
  1255.  
  1256.  
  1257.  
  1258.  
  1259.  
  1260.  
  1261.  
  1262.  
  1263.  
  1264.  
  1265.  
  1266.  
  1267.  
  1268.  
  1269.  
  1270.  
  1271.  
  1272.                                      |||||||||||||||||||||||||||||||||||||||||||||||
  1273.  
  1274.  
  1275.  
  1276.  
  1277.  
  1278.  
  1279.  
  1280.  
  1281.  
  1282.  
  1283.  
  1284.  
  1285.  
  1286.  
  1287.  
  1288.  
  1289.  
  1290.  
  1291.  
  1292.  
  1293.  
  1294.  
  1295.  
  1296.  
  1297.  
  1298.  
  1299.  
  1300.  
  1301.  
  1302.  
  1303.  
  1304.  
  1305.  
  1306.  
  1307.  
  1308.  
  1309.  
  1310.  
  1311.  
  1312.  
  1313.  
  1314.  
  1315.  
  1316.  
  1317.                                                  |||||||||||||||||||||||||||||||||||||||||||||||
  1318.  
  1319.  
  1320.  
  1321.  
  1322.  
  1323.  
  1324.  
  1325.  
  1326.  
  1327.  
  1328.  
  1329.  
  1330.  
  1331.  
  1332.  
  1333.  
  1334.  
  1335.  
  1336.  
  1337.  
  1338.  
  1339.  
  1340.  
  1341.  
  1342.  
  1343.  
  1344.  
  1345.  
  1346.  
  1347.  
  1348.  
  1349.  
  1350.  
  1351.  
  1352.  
  1353.  
  1354.  
  1355.  
  1356.  
  1357.  
  1358.  
  1359.  
  1360.  
  1361.  
  1362.                                                                                                        |||||||||||||||||||||||||||||||||||||||||||||||
  1363.  
  1364.  
  1365.  
  1366.  
  1367.  
  1368.  
  1369.  
  1370.  
  1371.  
  1372.  
  1373.  
  1374.  
  1375.  
  1376.  
  1377.  
  1378.  
  1379.  
  1380.  
  1381.  
  1382.  
  1383.  
  1384.  
  1385.  
  1386.  
  1387.  
  1388.  
  1389.  
  1390.  
  1391.  
  1392.  
  1393.  
  1394.  
  1395.  
  1396.  
  1397.  
  1398.  
  1399.  
  1400.  
  1401.  
  1402.  
  1403.  
  1404.  
  1405.  
  1406.  
  1407.  
  1408.  
  1409.  
  1410.  
  1411.  
  1412.  
  1413.  
  1414.  
  1415.  
  1416.  
  1417.  
  1418.  
  1419.  
  1420.  
  1421.                                   - 8 -
  1422.  
  1423.  
  1424.  
  1425.        ________________________________________________________________________________________________
  1426.         Patch         Hardware         miniroot                         Software
  1427.         Number      Requirements       required?                      Requirements
  1428.        ________________________________________________________________________________________________________________________________________________________________________________________________
  1429.        |||
  1430.                |||
  1431.                                      |||
  1432.                                                  |||
  1433.                                                                                                        |||
  1434.  
  1435.        ________________________________________________________________________________________________
  1436.          247     none                      N       IDO 5.2
  1437.        ________________________________________________________________________________________________
  1438.          254     IP5, IP7, IP9,
  1439.                  IP15, IP17,
  1440.                  IP19                      Y       IRIX 5.2,
  1441.                                                    IRIX 5.2 for Challenge/Onyx
  1442.        ________________________________________________________________________________________________
  1443.          261     none                      Y       FDDIXpress 3.4
  1444.        ________________________________________________________________________________________________
  1445.          265     IP17, GTX
  1446.                  graphics                  N       IRIX 5.2,
  1447.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  1448.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  1449.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  1450.                                                    IRIX 5.2 for Challenge/Onyx,
  1451.                                                    IRIX 5.2 for TKO Onyx
  1452.        ________________________________________________________________________________________________
  1453.          268     none                      N       IDO 5.2
  1454.        ________________________________________________________________________________________________
  1455.          293     none                      N       Fortran 4.0
  1456.        ________________________________________________________________________________________________
  1457.          318     none                      N       IRIX5.2,
  1458.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  1459.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  1460.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  1461.                                                    IRIX 5.2 for Challenge/Onyx,
  1462.                                                    IRIX 5.2 for TKO Onyx
  1463.        ________________________________________________________________________________________________
  1464.          321     none                      N       IDO 5.2
  1465.        ________________________________________________________________________________________________
  1466.          326     Indy, Indigo2             N       IRIX 5.3
  1467.        ________________________________________________________________________________________________
  1468.          332     none                      N       IRIX5.2,
  1469.                                                    IRIX 5.2 for Indy R4600PC & Challenge S,
  1470.                                                    IRIX 5.2 for Indy R4600SC/XZ & Presenter,
  1471.                                                    IRIX 5.2 for Onyx LE (Onyx Extreme),
  1472.                                                    IRIX 5.2 for Challenge/Onyx,
  1473.                                                    IRIX 5.2 for TKO Onyx
  1474.        ________________________________________________________________________________________________
  1475.        ________________________________________________________________________________________________
  1476.        |||||||||||||||||||||||||||||||||||
  1477.  
  1478.  
  1479.  
  1480.  
  1481.  
  1482.  
  1483.  
  1484.  
  1485.  
  1486.  
  1487.  
  1488.  
  1489.  
  1490.  
  1491.  
  1492.  
  1493.  
  1494.  
  1495.  
  1496.  
  1497.  
  1498.  
  1499.  
  1500.  
  1501.  
  1502.  
  1503.  
  1504.  
  1505.  
  1506.  
  1507.  
  1508.  
  1509.  
  1510.                |||||||||||||||||||||||||||||||||||
  1511.  
  1512.  
  1513.  
  1514.  
  1515.  
  1516.  
  1517.  
  1518.  
  1519.  
  1520.  
  1521.  
  1522.  
  1523.  
  1524.  
  1525.  
  1526.  
  1527.  
  1528.  
  1529.  
  1530.  
  1531.  
  1532.  
  1533.  
  1534.  
  1535.  
  1536.  
  1537.  
  1538.  
  1539.  
  1540.  
  1541.  
  1542.  
  1543.  
  1544.                                      |||||||||||||||||||||||||||||||||||
  1545.  
  1546.  
  1547.  
  1548.  
  1549.  
  1550.  
  1551.  
  1552.  
  1553.  
  1554.  
  1555.  
  1556.  
  1557.  
  1558.  
  1559.  
  1560.  
  1561.  
  1562.  
  1563.  
  1564.  
  1565.  
  1566.  
  1567.  
  1568.  
  1569.  
  1570.  
  1571.  
  1572.  
  1573.  
  1574.  
  1575.  
  1576.  
  1577.  
  1578.                                                  |||||||||||||||||||||||||||||||||||
  1579.  
  1580.  
  1581.  
  1582.  
  1583.  
  1584.  
  1585.  
  1586.  
  1587.  
  1588.  
  1589.  
  1590.  
  1591.  
  1592.  
  1593.  
  1594.  
  1595.  
  1596.  
  1597.  
  1598.  
  1599.  
  1600.  
  1601.  
  1602.  
  1603.  
  1604.  
  1605.  
  1606.  
  1607.  
  1608.  
  1609.  
  1610.  
  1611.  
  1612.                                                                                                        |||||||||||||||||||||||||||||||||||
  1613.  
  1614.  
  1615.  
  1616.  
  1617.  
  1618.  
  1619.  
  1620.  
  1621.  
  1622.  
  1623.  
  1624.  
  1625.  
  1626.  
  1627.  
  1628.  
  1629.  
  1630.  
  1631.  
  1632.  
  1633.  
  1634.  
  1635.  
  1636.  
  1637.  
  1638.  
  1639.  
  1640.  
  1641.  
  1642.  
  1643.  
  1644.  
  1645.  
  1646.  
  1647.  
  1648.  
  1649.        *      Patch 9 and Patch 66 are incompatible. Only one of
  1650.        these two patches can be installed on a system at a time.
  1651.  
  1652.  
  1653.  
  1654.  
  1655.  
  1656.  
  1657.  
  1658.  
  1659.  
  1660.  
  1661.  
  1662.  
  1663.  
  1664.  
  1665.  
  1666.  
  1667.  
  1668.  
  1669.  
  1670.  
  1671.                                   - 9 -
  1672.  
  1673.  
  1674.  
  1675.        Table 1-2                    IRIX 5.3 Hardware and Software Patch Requirements
  1676.  
  1677.  
  1678.        _______________________________________________________________________
  1679.         Patch        Hardware         miniroot              Software
  1680.         Number     Requirements     recommended?          Requirements
  1681.        ______________________________________________________________________________________________________________________________________________
  1682.        |||
  1683.                |||
  1684.                                   |||
  1685.                                                  |||
  1686.                                                                               |||
  1687.  
  1688.          158     none                    Y         IRIX 5.3
  1689.        _______________________________________________________________________
  1690.          159     IP19                    Y         IRIX 5.3
  1691.        _______________________________________________________________________
  1692.          166     none                    N         IRIX 5.3,
  1693.                                                    IRIX 5.3 with XFS
  1694.        _______________________________________________________________________
  1695.          170     none                    N         C++ 4.0
  1696.        _______________________________________________________________________
  1697.          172     none                    N         IDO 5.3
  1698.        _______________________________________________________________________
  1699.          180     none                    N         IRIX 5.3,
  1700.                                                    Digital Media
  1701.                                                    Tools 5.3
  1702.        _______________________________________________________________________
  1703.          181     none                    N         IRIX 5.3,
  1704.                                                    Digital Media
  1705.                                                    Tools 5.3
  1706.        _______________________________________________________________________
  1707.          183     none                    N         IRIX 5.3,
  1708.                                                    IRIX 5.3 with XFS
  1709.        _______________________________________________________________________
  1710.          186     IP5, IP7,
  1711.                  IP9, IP15,
  1712.                  IP17, IP19              Y         IRIX 5.3
  1713.        _______________________________________________________________________
  1714.          187     none                    N         IDO 5.3
  1715.        _______________________________________________________________________
  1716.          189     none                    N         IRIX 5.3,
  1717.                                                    Digital Media
  1718.                                                    Tools 5.3
  1719.        _______________________________________________________________________
  1720.          195     none                    N         IRIX 5.3,
  1721.                                                    Digital Media
  1722.                                                    Execution Environment 5.3
  1723.        _______________________________________________________________________
  1724.          197     none                    N         IRIS InSight Viewer 2.3
  1725.        _______________________________________________________________________
  1726.          201     VGX/VGXT
  1727.                  graphics                N         IRIX 5.3,
  1728.  
  1729.        _______________________________________________________________________
  1730.          203     none                    N         IRIS Explorer 2.2.2
  1731.        _______________________________________________________________________
  1732.          204     none                    N         IRIX 5.3,
  1733.                                                    IRIX 5.3 with XFS
  1734.        _______________________________________________________________________
  1735.          205     none                    N         IRIX 5.3,
  1736.                                                    IRIX 5.3 with XFS
  1737.        _______________________________________________________________________
  1738.          209     IP19, RE/REII
  1739.                  graphics                Y         IRIX 5.3,
  1740.        ||||||||||||||||||||||||||||||||||||||||||||
  1741.  
  1742.  
  1743.  
  1744.  
  1745.  
  1746.  
  1747.  
  1748.  
  1749.  
  1750.  
  1751.  
  1752.  
  1753.  
  1754.  
  1755.  
  1756.  
  1757.  
  1758.  
  1759.  
  1760.  
  1761.  
  1762.  
  1763.  
  1764.  
  1765.  
  1766.  
  1767.  
  1768.  
  1769.  
  1770.  
  1771.  
  1772.  
  1773.  
  1774.  
  1775.  
  1776.  
  1777.  
  1778.  
  1779.  
  1780.  
  1781.  
  1782.                ||||||||||||||||||||||||||||||||||||||||||||
  1783.  
  1784.  
  1785.  
  1786.  
  1787.  
  1788.  
  1789.  
  1790.  
  1791.  
  1792.  
  1793.  
  1794.  
  1795.  
  1796.  
  1797.  
  1798.  
  1799.  
  1800.  
  1801.  
  1802.  
  1803.  
  1804.  
  1805.  
  1806.  
  1807.  
  1808.  
  1809.  
  1810.  
  1811.  
  1812.  
  1813.  
  1814.  
  1815.  
  1816.  
  1817.  
  1818.  
  1819.  
  1820.  
  1821.  
  1822.  
  1823.  
  1824.                                   ||||||||||||||||||||||||||||||||||||||||||||
  1825.  
  1826.  
  1827.  
  1828.  
  1829.  
  1830.  
  1831.  
  1832.  
  1833.  
  1834.  
  1835.  
  1836.  
  1837.  
  1838.  
  1839.  
  1840.  
  1841.  
  1842.  
  1843.  
  1844.  
  1845.  
  1846.  
  1847.  
  1848.  
  1849.  
  1850.  
  1851.  
  1852.  
  1853.  
  1854.  
  1855.  
  1856.  
  1857.  
  1858.  
  1859.  
  1860.  
  1861.  
  1862.  
  1863.  
  1864.  
  1865.  
  1866.                                                  ||||||||||||||||||||||||||||||||||||||||||||
  1867.  
  1868.  
  1869.  
  1870.  
  1871.  
  1872.  
  1873.  
  1874.  
  1875.  
  1876.  
  1877.  
  1878.  
  1879.  
  1880.  
  1881.  
  1882.  
  1883.  
  1884.  
  1885.  
  1886.  
  1887.  
  1888.  
  1889.  
  1890.  
  1891.  
  1892.  
  1893.  
  1894.  
  1895.  
  1896.  
  1897.  
  1898.  
  1899.  
  1900.  
  1901.  
  1902.  
  1903.  
  1904.  
  1905.  
  1906.  
  1907.  
  1908.                                                                               ||||||||||||||||||||||||||||||||||||||||||||
  1909.  
  1910.  
  1911.  
  1912.  
  1913.  
  1914.  
  1915.  
  1916.  
  1917.  
  1918.  
  1919.  
  1920.  
  1921.  
  1922.  
  1923.  
  1924.  
  1925.  
  1926.  
  1927.  
  1928.  
  1929.  
  1930.  
  1931.  
  1932.  
  1933.  
  1934.  
  1935.  
  1936.  
  1937.  
  1938.  
  1939.  
  1940.  
  1941.  
  1942.  
  1943.  
  1944.  
  1945.  
  1946.  
  1947.  
  1948.  
  1949.  
  1950.  
  1951.  
  1952.  
  1953.  
  1954.  
  1955.  
  1956.  
  1957.  
  1958.  
  1959.  
  1960.  
  1961.  
  1962.  
  1963.  
  1964.                                   - 10 -
  1965.  
  1966.  
  1967.  
  1968.        _______________________________________________________________________
  1969.         Patch        Hardware         miniroot              Software
  1970.         Number     Requirements     recommended?          Requirements
  1971.        ______________________________________________________________________________________________________________________________________________
  1972.        |||
  1973.                |||
  1974.                                   |||
  1975.                                                  |||
  1976.                                                                               |||
  1977.  
  1978.                                                    IRIX 5.3 with XFS
  1979.        _______________________________________________________________________
  1980.          210     IP12, IP20,
  1981.                  IP22, IP17,
  1982.                  IP19 w/XS, XZ,
  1983.                  Elan or Extreme
  1984.                  graphics                N         IRIX 5.3,
  1985.                                                    IRIX 5.3 with XFS
  1986.        _______________________________________________________________________
  1987.          216     none                    Y         IRIX 5.3, NFS3 5.3
  1988.        _______________________________________________________________________
  1989.          221     none                    Y         IRIX 5.3 with XFS, IDO 5.3
  1990.        _______________________________________________________________________
  1991.          224     RE/REII
  1992.                  graphics                Y         IRIX 5.3,
  1993.                                                    IRIX 5.3 with XFS
  1994.        _______________________________________________________________________
  1995.          225     XS, XS24,
  1996.                  XS24Z, XZ,
  1997.                  Elan and Extreme
  1998.                  graphics                Y         IRIX 5.3,
  1999.                                                    IRIX 5.3 with XFS
  2000.        _______________________________________________________________________
  2001.          231     none                    N         IRIX 5.3
  2002.        _______________________________________________________________________
  2003.          233     IP19                    Y         RAID 5 software
  2004.        _______________________________________________________________________
  2005.          238     none                    Y         Sirius 1.0.2 or Sirius 1.1
  2006.        _______________________________________________________________________
  2007.          244     IP22                    Y         IRIX 5.3
  2008.        _______________________________________________________________________
  2009.          248     none                    N         IDO 5.3
  2010.        _______________________________________________________________________
  2011.          253     IP22                    Y         IRIX 5.3,
  2012.                                                    IRIX 5.3 with XFS
  2013.        _______________________________________________________________________
  2014.          256     none                    N         Fortran 4.0.1
  2015.        _______________________________________________________________________
  2016.          260     none                    N         IDO 5.3
  2017.        _______________________________________________________________________
  2018.          265     IP17, GTX
  2019.                  graphics                N         IRIX 5.3,
  2020.  
  2021.        _______________________________________________________________________
  2022.          271     none                    N         IRIX 5.3,
  2023.                                                    IRIX 5.3 with XFS,
  2024.        _______________________________________________________________________
  2025.          277     none                    N         IRIX 5.3
  2026.        _______________________________________________________________________
  2027.          285     Indy with
  2028.                  XF graphics             Y         IRIX 5.3,
  2029.  
  2030.        _______________________________________________________________________
  2031.          288     none                    Y         IRIX 5.3 with XFS
  2032.        _______________________________________________________________________
  2033.          289     RE/REII, VTX
  2034.        |||||||||||||||||||||||||||||||||||||||||||||||
  2035.  
  2036.  
  2037.  
  2038.  
  2039.  
  2040.  
  2041.  
  2042.  
  2043.  
  2044.  
  2045.  
  2046.  
  2047.  
  2048.  
  2049.  
  2050.  
  2051.  
  2052.  
  2053.  
  2054.  
  2055.  
  2056.  
  2057.  
  2058.  
  2059.  
  2060.  
  2061.  
  2062.  
  2063.  
  2064.  
  2065.  
  2066.  
  2067.  
  2068.  
  2069.  
  2070.  
  2071.  
  2072.  
  2073.  
  2074.  
  2075.  
  2076.  
  2077.  
  2078.  
  2079.                |||||||||||||||||||||||||||||||||||||||||||||||
  2080.  
  2081.  
  2082.  
  2083.  
  2084.  
  2085.  
  2086.  
  2087.  
  2088.  
  2089.  
  2090.  
  2091.  
  2092.  
  2093.  
  2094.  
  2095.  
  2096.  
  2097.  
  2098.  
  2099.  
  2100.  
  2101.  
  2102.  
  2103.  
  2104.  
  2105.  
  2106.  
  2107.  
  2108.  
  2109.  
  2110.  
  2111.  
  2112.  
  2113.  
  2114.  
  2115.  
  2116.  
  2117.  
  2118.  
  2119.  
  2120.  
  2121.  
  2122.  
  2123.  
  2124.                                   |||||||||||||||||||||||||||||||||||||||||||||||
  2125.  
  2126.  
  2127.  
  2128.  
  2129.  
  2130.  
  2131.  
  2132.  
  2133.  
  2134.  
  2135.  
  2136.  
  2137.  
  2138.  
  2139.  
  2140.  
  2141.  
  2142.  
  2143.  
  2144.  
  2145.  
  2146.  
  2147.  
  2148.  
  2149.  
  2150.  
  2151.  
  2152.  
  2153.  
  2154.  
  2155.  
  2156.  
  2157.  
  2158.  
  2159.  
  2160.  
  2161.  
  2162.  
  2163.  
  2164.  
  2165.  
  2166.  
  2167.  
  2168.  
  2169.                                                  |||||||||||||||||||||||||||||||||||||||||||||||
  2170.  
  2171.  
  2172.  
  2173.  
  2174.  
  2175.  
  2176.  
  2177.  
  2178.  
  2179.  
  2180.  
  2181.  
  2182.  
  2183.  
  2184.  
  2185.  
  2186.  
  2187.  
  2188.  
  2189.  
  2190.  
  2191.  
  2192.  
  2193.  
  2194.  
  2195.  
  2196.  
  2197.  
  2198.  
  2199.  
  2200.  
  2201.  
  2202.  
  2203.  
  2204.  
  2205.  
  2206.  
  2207.  
  2208.  
  2209.  
  2210.  
  2211.  
  2212.  
  2213.  
  2214.                                                                               |||||||||||||||||||||||||||||||||||||||||||||||
  2215.  
  2216.  
  2217.  
  2218.  
  2219.  
  2220.  
  2221.  
  2222.  
  2223.  
  2224.  
  2225.  
  2226.  
  2227.  
  2228.  
  2229.  
  2230.  
  2231.  
  2232.  
  2233.  
  2234.  
  2235.  
  2236.  
  2237.  
  2238.  
  2239.  
  2240.  
  2241.  
  2242.  
  2243.  
  2244.  
  2245.  
  2246.  
  2247.  
  2248.  
  2249.  
  2250.  
  2251.  
  2252.  
  2253.  
  2254.  
  2255.  
  2256.  
  2257.  
  2258.  
  2259.  
  2260.  
  2261.  
  2262.  
  2263.  
  2264.  
  2265.  
  2266.  
  2267.  
  2268.  
  2269.  
  2270.  
  2271.  
  2272.  
  2273.                                   - 11 -
  2274.  
  2275.  
  2276.  
  2277.        _______________________________________________________________________
  2278.         Patch        Hardware         miniroot              Software
  2279.         Number     Requirements     recommended?          Requirements
  2280.        ______________________________________________________________________________________________________________________________________________
  2281.        |||
  2282.                |||
  2283.                                   |||
  2284.                                                  |||
  2285.                                                                               |||
  2286.  
  2287.                  graphics                Y         IRIX 5.3,
  2288.  
  2289.        _______________________________________________________________________
  2290.          291     none                    N         IRIX 5.3,
  2291.                                                    IRIX 5.3 with XFS
  2292.        _______________________________________________________________________
  2293.          292     none                    N         IRIX 5.3,
  2294.                                                    IRIX 5.3 with XFS
  2295.        _______________________________________________________________________
  2296.          294     IP20, IP22              Y         Galileo/Indigo2/Indy
  2297.                                                    Video
  2298.        _______________________________________________________________________
  2299.          301     none                    N         IRIX 5.3 with XFS
  2300.        _______________________________________________________________________
  2301.          304     none                    N         IDO 5.3
  2302.        _______________________________________________________________________
  2303.          310     XS, XS24,
  2304.                  XZ, Elan, and
  2305.                  Extreme graphics        Y         IRIX 5.3,
  2306.                                                    IRIX 5.3 with XFS
  2307.        _______________________________________________________________________
  2308.          313     none                    N         Fortran 4.0.1
  2309.        _______________________________________________________________________
  2310.          314     none                    Y         Galileo/Indigo2/Indy
  2311.                                                    Video
  2312.        _______________________________________________________________________
  2313.          315     none                    N         Fortran 4.0.1
  2314.        _______________________________________________________________________
  2315.          322     none                    N         IRIX 5.3,
  2316.                                                    IRIX 5.3 with XFS
  2317.        _______________________________________________________________________
  2318.          323     none                    N         NFS 5.3
  2319.        _______________________________________________________________________
  2320.          324     none                    Y         NFS 5.3 and
  2321.                                                    IRIX 5.3 with XFS
  2322.        _______________________________________________________________________
  2323.          326     Indy, Indigo2           N         IRIX 5.3
  2324.        _______________________________________________________________________
  2325.          327     none                    N         IRIX 5.3,
  2326.                                                    IRIX 5.3 with XFS
  2327.        _______________________________________________________________________
  2328.          332     none                    N         IRIX 5.3,
  2329.                                                    IRIX 5.3 with XFS
  2330.        _______________________________________________________________________
  2331.          379     none                    N         IRIX 5.3,
  2332.                                                    IRIX 5.3 with XFS
  2333.        _______________________________________________________________________
  2334.        |||||||||||||||||||||||||||||||||||||||
  2335.  
  2336.  
  2337.  
  2338.  
  2339.  
  2340.  
  2341.  
  2342.  
  2343.  
  2344.  
  2345.  
  2346.  
  2347.  
  2348.  
  2349.  
  2350.  
  2351.  
  2352.  
  2353.  
  2354.  
  2355.  
  2356.  
  2357.  
  2358.  
  2359.  
  2360.  
  2361.  
  2362.  
  2363.  
  2364.  
  2365.  
  2366.  
  2367.  
  2368.  
  2369.  
  2370.  
  2371.                |||||||||||||||||||||||||||||||||||||||
  2372.  
  2373.  
  2374.  
  2375.  
  2376.  
  2377.  
  2378.  
  2379.  
  2380.  
  2381.  
  2382.  
  2383.  
  2384.  
  2385.  
  2386.  
  2387.  
  2388.  
  2389.  
  2390.  
  2391.  
  2392.  
  2393.  
  2394.  
  2395.  
  2396.  
  2397.  
  2398.  
  2399.  
  2400.  
  2401.  
  2402.  
  2403.  
  2404.  
  2405.  
  2406.  
  2407.  
  2408.                                   |||||||||||||||||||||||||||||||||||||||
  2409.  
  2410.  
  2411.  
  2412.  
  2413.  
  2414.  
  2415.  
  2416.  
  2417.  
  2418.  
  2419.  
  2420.  
  2421.  
  2422.  
  2423.  
  2424.  
  2425.  
  2426.  
  2427.  
  2428.  
  2429.  
  2430.  
  2431.  
  2432.  
  2433.  
  2434.  
  2435.  
  2436.  
  2437.  
  2438.  
  2439.  
  2440.  
  2441.  
  2442.  
  2443.  
  2444.  
  2445.                                                  |||||||||||||||||||||||||||||||||||||||
  2446.  
  2447.  
  2448.  
  2449.  
  2450.  
  2451.  
  2452.  
  2453.  
  2454.  
  2455.  
  2456.  
  2457.  
  2458.  
  2459.  
  2460.  
  2461.  
  2462.  
  2463.  
  2464.  
  2465.  
  2466.  
  2467.  
  2468.  
  2469.  
  2470.  
  2471.  
  2472.  
  2473.  
  2474.  
  2475.  
  2476.  
  2477.  
  2478.  
  2479.  
  2480.  
  2481.  
  2482.                                                                               |||||||||||||||||||||||||||||||||||||||
  2483.  
  2484.  
  2485.  
  2486.  
  2487.  
  2488.  
  2489.  
  2490.  
  2491.  
  2492.  
  2493.  
  2494.  
  2495.  
  2496.  
  2497.  
  2498.  
  2499.  
  2500.  
  2501.  
  2502.  
  2503.  
  2504.  
  2505.  
  2506.  
  2507.  
  2508.  
  2509.  
  2510.  
  2511.  
  2512.  
  2513.  
  2514.  
  2515.  
  2516.  
  2517.  
  2518.  
  2519.  
  2520.  
  2521.  
  2522.  
  2523.  
  2524.  
  2525.  
  2526.  
  2527.  
  2528.  
  2529.  
  2530.  
  2531.  
  2532.  
  2533.  
  2534.  
  2535.  
  2536.  
  2537.  
  2538.                                   - 12 -
  2539.  
  2540.  
  2541.  
  2542.        Table 1-3 IRIX 6.0.1 Hardware and Software Patch Requirements
  2543.  
  2544.  
  2545.        ___________________________________________________________
  2546.         Patch      Hardware     miniroot          Software
  2547.         Number   Requirements   required?       Requirements
  2548.        ______________________________________________________________________________________________________________________
  2549.        |||
  2550.                |||
  2551.                               |||
  2552.                                           |||
  2553.                                                                   |||
  2554.  
  2555.           65     none               Y       SGIHelp 1.0.1
  2556.        ___________________________________________________________
  2557.          177     none               N       IDO 6.0.1
  2558.        ___________________________________________________________
  2559.          212     none               N       IRIX 6.0.1
  2560.        ___________________________________________________________
  2561.          263     none               N       IDO 6.0.1
  2562.        ___________________________________________________________
  2563.          264     none               N       IRIX 6.0.1
  2564.        ___________________________________________________________
  2565.          276     none               Y       IRIX 6.0.1
  2566.        ___________________________________________________________
  2567.          283     none               Y       IRIX 6.0.1, IDO 6.0.1
  2568.        ___________________________________________________________
  2569.          287     none               Y       IRIX 6.0.1
  2570.        ___________________________________________________________
  2571.          289     IP21               Y       IRIX 6.0.1
  2572.        ___________________________________________________________
  2573.          303     IP21               N       IRIX 6.0.1
  2574.        ___________________________________________________________
  2575.          312     IP26               Y       IRIX 6.0.1
  2576.        ___________________________________________________________
  2577.          328     none               Y       IRIX 6.0.1
  2578.        ___________________________________________________________
  2579.          331     none               N       IRIX 6.0.1
  2580.        ___________________________________________________________
  2581.          332     none               N       IRIX 6.0.1
  2582.        ___________________________________________________________
  2583.          380     none               N       IRIX 6.0.1
  2584.        ___________________________________________________________
  2585.        |||||||||||||||||||||||
  2586.  
  2587.  
  2588.  
  2589.  
  2590.  
  2591.  
  2592.  
  2593.  
  2594.  
  2595.  
  2596.  
  2597.  
  2598.  
  2599.  
  2600.  
  2601.  
  2602.  
  2603.  
  2604.  
  2605.  
  2606.                |||||||||||||||||||||||
  2607.  
  2608.  
  2609.  
  2610.  
  2611.  
  2612.  
  2613.  
  2614.  
  2615.  
  2616.  
  2617.  
  2618.  
  2619.  
  2620.  
  2621.  
  2622.  
  2623.  
  2624.  
  2625.  
  2626.  
  2627.                               |||||||||||||||||||||||
  2628.  
  2629.  
  2630.  
  2631.  
  2632.  
  2633.  
  2634.  
  2635.  
  2636.  
  2637.  
  2638.  
  2639.  
  2640.  
  2641.  
  2642.  
  2643.  
  2644.  
  2645.  
  2646.  
  2647.  
  2648.                                           |||||||||||||||||||||||
  2649.  
  2650.  
  2651.  
  2652.  
  2653.  
  2654.  
  2655.  
  2656.  
  2657.  
  2658.  
  2659.  
  2660.  
  2661.  
  2662.  
  2663.  
  2664.  
  2665.  
  2666.  
  2667.  
  2668.  
  2669.                                                                   |||||||||||||||||||||||
  2670.  
  2671.  
  2672.  
  2673.  
  2674.  
  2675.  
  2676.  
  2677.  
  2678.  
  2679.  
  2680.  
  2681.  
  2682.  
  2683.  
  2684.  
  2685.  
  2686.  
  2687.  
  2688.  
  2689.  
  2690.  
  2691.  
  2692.  
  2693.  
  2694.  
  2695.  
  2696.  
  2697.  
  2698.  
  2699.  
  2700.  
  2701.  
  2702.  
  2703.  
  2704.  
  2705.  
  2706.  
  2707.  
  2708.  
  2709.  
  2710.  
  2711.  
  2712.  
  2713.  
  2714.  
  2715.  
  2716.  
  2717.  
  2718.  
  2719.  
  2720.  
  2721.  
  2722.                                   - 13 -
  2723.  
  2724.  
  2725.  
  2726.        Table 1-4 is provided for those customers who have received
  2727.        patches before from their support provider. It provides
  2728.        information on which patch(es) have replaced older patches.
  2729.  
  2730.                        Table 1-4 Patch Replacement
  2731.  
  2732.                ____________________________________________
  2733.                 Patch Number            Replaces
  2734.                ________________________________________________________________________________________
  2735.                ||
  2736.                              ||
  2737.                                                            ||
  2738.                      59                    11
  2739.                ____________________________________________
  2740.                      84                   0, 34
  2741.                ____________________________________________
  2742.                      88          21, 26, 42, 68, 76, 82
  2743.                ____________________________________________
  2744.                     130                    16
  2745.                ____________________________________________
  2746.                     131                    71
  2747.                ____________________________________________
  2748.                     151                    62
  2749.                ____________________________________________
  2750.                     162                7, 41, 142
  2751.                ____________________________________________
  2752.                     186                    158
  2753.                ____________________________________________
  2754.                     224                    208
  2755.                ____________________________________________
  2756.                     226             1, 22, 30, 33, 47
  2757.                ____________________________________________
  2758.                     241                  23, 89
  2759.                ____________________________________________
  2760.                     254        1, 22, 30, 33, 47, 125, 139
  2761.                ____________________________________________
  2762.                     283                    259
  2763.                ____________________________________________
  2764.                     313                    256
  2765.                ____________________________________________
  2766.                     314                    215
  2767.                ____________________________________________
  2768.                     315                    306
  2769.                ____________________________________________
  2770.                     318                    12
  2771.                ____________________________________________
  2772.                     321                    70
  2773.                ____________________________________________
  2774.                     324               213, 220, 269
  2775.                ____________________________________________
  2776.                |||||||||||||||||||||||||||||
  2777.  
  2778.  
  2779.  
  2780.  
  2781.  
  2782.  
  2783.  
  2784.  
  2785.  
  2786.  
  2787.  
  2788.  
  2789.  
  2790.  
  2791.  
  2792.  
  2793.  
  2794.  
  2795.  
  2796.  
  2797.  
  2798.  
  2799.  
  2800.  
  2801.  
  2802.  
  2803.                              |||||||||||||||||||||||||||||
  2804.  
  2805.  
  2806.  
  2807.  
  2808.  
  2809.  
  2810.  
  2811.  
  2812.  
  2813.  
  2814.  
  2815.  
  2816.  
  2817.  
  2818.  
  2819.  
  2820.  
  2821.  
  2822.  
  2823.  
  2824.  
  2825.  
  2826.  
  2827.  
  2828.  
  2829.  
  2830.                                                            |||||||||||||||||||||||||||||
  2831.  
  2832.  
  2833.  
  2834.  
  2835.  
  2836.  
  2837.  
  2838.  
  2839.  
  2840.  
  2841.  
  2842.  
  2843.  
  2844.  
  2845.  
  2846.  
  2847.  
  2848.  
  2849.  
  2850.  
  2851.  
  2852.  
  2853.  
  2854.  
  2855.  
  2856.  
  2857.  
  2858.  
  2859.  
  2860.  
  2861.  
  2862.  
  2863.  
  2864.  
  2865.  
  2866.  
  2867.  
  2868.  
  2869.  
  2870.  
  2871.  
  2872.  
  2873.  
  2874.  
  2875.  
  2876.  
  2877.  
  2878.